home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 027a / qquery.zip / QQDEMO.PRG < prev    next >
Text File  |  1991-08-01  |  956b  |  53 lines

  1. * QQDEMO.PRG  Demonstrates QQuery with sample data file QQDEMO.DBF
  2. CLEAR ALL
  3. USE QQDEMO
  4. DO QQUERY
  5. CLEAR
  6. TEXT
  7.  
  8. End of simple program using QQDEMO.DBF with QQuery.
  9.  
  10. Here are the memory variables set by QQuery:
  11.  
  12. ENDTEXT
  13. CLOSE PROCEDURE
  14. DISPLAY MEMORY
  15. WAIT
  16. CLEAR
  17. TEXT
  18.  
  19. Check the STATUS displayed below for any FILTER set:
  20.  
  21. ENDTEXT
  22. DISPLAY STATUS
  23. CLEAR
  24. TEXT
  25. Note the report header provided by QQuery:
  26.  
  27. ENDTEXT
  28. REPORT FORM QQDEMO HEADING QQDESC
  29. WAIT
  30. CLEAR
  31. TEXT
  32.                     Q Q U E R Y   D E M O N S T R A T I O N
  33.  
  34.  
  35.      More information about QQuery is contained in a README file.
  36.      To print a copy, enter:
  37.  
  38.                     . TYPE README TO PRINT
  39.  
  40.      To repeat the report, enter:
  41.  
  42.                     . REPORT FORM QQDEMO HEADING QQDESC
  43.  
  44.      To repeat the simple program, enter:
  45.  
  46.                     . DO QQDEMO
  47.  
  48.      To run QQuery directly, enter:
  49.  
  50.                     . DO QQUERY
  51.  
  52. ENDTEXT
  53.